home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from checkbox.registry import Registry
-
- class DataRegistry(Registry):
- '''Base registry for storing data.
-
- The default behavior is to simply return the data passed as argument
- to the constructor.
- '''
-
- def __init__(self, data = None):
- super(DataRegistry, self).__init__()
- self.data = data
-
-
- def __str__(self):
- return self.data
-
-
- def items(self):
- return []
-
-
-